#include <iostream>
using namespace std;
 
int main() {
    int x, y, product;
     
    cout << "Enter two integers\n";
    cin >> x >> y;
     
    // Multiplying x and y
    product = x*y;
    cout << "Product = " << product;
     
    return 0;
}
